home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / ScreenSavers / BackSpaceViews / MailWatchView.BackModule / Source / Makefile.preamble < prev    next >
Encoding:
Makefile  |  1996-02-04  |  3.4 KB  |  88 lines

  1. ############################################################################### #  NeXT Makefile.preamble Template
  2. #  Copyright 1993, NeXT Computer, Inc.
  3. #
  4. #  This Makefile is used for configuring the standard app makefiles associated
  5. #  with ProjectBuilder.  
  6. #  
  7. #  Use this template to set attributes for a project, sub-project, bundle, or
  8. #  palette.  Each node in the project's tree of sub-projects and bundles 
  9. #  should have it's own Makefile.preamble and Makefile.postamble.
  10. #
  11. ###############################################################################
  12. ## Configure the flags passed to $(CC) here.  These flags will also be 
  13. ## inherited by all nested sub-projects and bundles.  Put your -I, -D, -U, and
  14. ## -L flags here.  To change the default flags that get passed to ${CC} 
  15. ## (e.g. change -O to -O2), see Makefile.postamble.
  16.  
  17. # Flags passed to compiler (in addition to -g, -O, etc)
  18. OTHER_CFLAGS = 
  19. # Flags passed to ld (in addition to -ObjC, etc.)
  20. OTHER_LDFLAGS =    
  21.  
  22. ## Configure what is linked in at each level here.  Libraries are only used in
  23. ## the final 'app' linking step.  Final 'app' linking is only done via the
  24. ## 'app', 'debug', and 'profile' targets when they are invoked for
  25. ## the top-level app.
  26.  
  27. # Additional relocatables to be linked in at this level
  28. OTHER_OFILES = 
  29. # Additional libs to link apps against ('app' target)
  30. OTHER_LIBS = 
  31. # Additional libs to link apps against ('debug' target)
  32. OTHER_DEBUG_LIBS = 
  33. # Additional libs to link apps against ('profile' target)
  34. OTHER_PROF_LIBS = 
  35.  
  36. # More 'app' libraries when $(JAPANESE) = "YES"
  37. OTHER_JAPANESE_LIBS = 
  38. # More 'debug' libraries when $(JAPANESE) = "YES"
  39. OTHER_JAPANESE_DEBUG_LIBS = 
  40. # More 'profile' libs when $(JAPANESE) = "YES"
  41. OTHER_JAPANESE_PROF_LIBS = 
  42.  
  43. ## Configure how things get built here.  Additional dependencies, sourcefiles, 
  44. ## derived files, and build order should be specified here.
  45.  
  46. # Other dependencies of this project
  47. OTHER_PRODUCT_DEPENDS =    
  48. # Built *before* building subprojects/bundles
  49. OTHER_INITIAL_TARGETS = 
  50. # Other source files maintained by .pre/postamble
  51. OTHER_SOURCEFILES = 
  52. # Additional files to be removed by `make clean' 
  53. OTHER_GARBAGE = 
  54. # Precompiled headers to be built before any compilation occurs (e.g., draw.p)
  55. PRECOMPS = 
  56.  
  57. # Targets to be built before subprojects & bundles
  58. OTHER_INITIAL_TARGETS =    
  59.  
  60. # A virtual root directory (other than /) to be prepended to the $(INSTALLDIR) 
  61. # passed from ProjectBuilder.
  62. DSTROOT = 
  63.  
  64.  
  65. ## Add more obscure source files here to cause them to be automatically 
  66. ## processed by the appropriate tool.  Note that these files should also be
  67. ## added to "Supporting Files" in ProjectBuilder.  The desired .o files that 
  68. ## result from these files should also be added to OTHER_OFILES above so they
  69. ## will be linked in.
  70.  
  71. # .msg files that should have msgwrap run on them
  72. MSGFILES = 
  73. # .defs files that should have mig run on them
  74. DEFSFILES = 
  75. # .mig files (no .defs files) that should have mig run on them
  76. MIGFILES = 
  77.  
  78. ## Add additional Help directories here (add them to the project as "Other 
  79. ## Resources" in Project Builder) so that they will be compressed into .store
  80. ## files and copied into the app wrapper.  If the help directories themselves
  81. ## need to also be in the app wrapper, then a cp command will need to be added
  82. ## in an after_install target.
  83. OTHER_HELP_DIRS = 
  84.  
  85. # Don't add more rules here unless you want the first one to be the default
  86. # target for make!  Put all your targets in Makefile.postamble.
  87.  
  88.